MarkLogic Server 11.0 Product Documentation
PUT /manage/v2/certificate-templates/{id|name}/propertiesSummary
This resource address can be used to update the properties for the specified
certificate template.
URL Parameters |
format |
The format of the posted data. Can be either
json (default) or xml . This value overrides the Accept header if
both are present. |
Request Headers |
Accept |
The expected MIME type of the response. If the
format parameter is present, it takes precedence over the Accept header. |
Content-type |
The MIME type of the data in the request
body, either application/xml or application/json . |
Response Headers |
Content-type |
The MIME type of the data in the response
body. Depending upon the value of the format parameter or Accept header, either
application/xml or application/json . |
Response
Upon success, MarkLogic Server returns status code 204 (No Content). If the
payload is malformed or the database does not exist, a status code of 400 (Bad Request) is
returned. A status code of 401 (Unauthorized) is returned if the user does not have the
necessary privileges.
Required Privileges
This operation requires one of the following:
- the
manage-admin
and security
role
- the following privileges:
http://marklogic.com/xdmp/privileges/manage
http://marklogic.com/xdmp/privileges/manage-admin
http://marklogic.com/xdmp/privileges/get-user
http://marklogic.com/xdmp/privileges/xslt-invoke
Usage Notes
The structure of the data in the request body
is as follows. The
description
,
key-options
,
key-type
,
name
, and
certificate request
can be changed.
template-id
A certificate template id. The template-id element is not permitted
when using HTTP POST to create a new template. It is permitted
in HTTP PUT, as a convenience,
but must have the same value as returned by HTTP GET.
template-name
The name of the certificate request template.
template-description
A description of the certificate request template.
template-version
The certificate template's version.
key-type
The type of key to use (e.g. rsa).
key-options
The options for generating keys.
This is a complex structure with the following children:
key-length
The permitted key lengths.
pass-phrase
The pass phrase.
req
An X.509 certificate request
This is a complex structure with the following children:
version
The X509 version.
subject
The subject for a certificate or certificate request. You should
fill in as many of these fields as possible because individual
certificate authorities have specific requirements for which fields
must have values. If a required field is missing, a certificate
authority will typically reject your certificate request with a
cryptic error message that your request is bad.
This is a complex structure with the following children:
countryName
A two character country code (e.g. "US").
stateOrProvinceName
The state or province your server is in.
localityName
The city your server is in.
organizationName
The organization or company your server belongs to (e.g. MarkLogic).
organizationalUnitName
The organizational unit your server belongs to (e.g. Engineering).
emailAddress
The email address to contact regarding your server
(e.g. webmaster@yourcompany.com).
commonName
The common name of your server (e.g. www.yourcompany.com). This may be
left blank when creating a certificate template, since individual
servers will use their own host name.
v3ext
The X509v3 extensions.
Example
curl -X PUT --anyauth -u admin:admin -H "Content-Type:application/json" \
-d '{"description":"new template"}' \
http://localhost:8002/manage/v2/certificate-templates/myTemplate/properties
==> Changes the description for the certificate template, "myTemplate,"
to "new template."
Copyright © 2024 MarkLogic Corporation. MARKLOGIC is a
registered trademark of MarkLogic Corporation.